Anicet Ebou
devtools::install_github('ebedthan/afrods')
library(afrods)
library(tidyverse)waf <- economy %>%
filter(region == "Western Africa") %>%
select(country, year, `GDP (constant 2000 US$)`) %>%
filter(!is.na(`GDP (constant 2000 US$)`)) %>%
unique()ggplot(data = waf) + geom_line(mapping = aes(x = year, y = `GDP (constant 2000 US$)`, color = country))waf_c <- waf %>% filter(country == "Nigeria" | country == "Cote d'Ivoire" | country == "Ghana")
ggplot(data = waf_c) + geom_line(mapping = aes(x = year, y = `GDP (constant 2000 US$)`, color = country))The central mission of the R Consortium is to work with and provide support to the R Foundation and to the key organizations developing, maintaining, distributing and using R software through the identification, development and implementation of infrastructure projects.